spi: Remove SPI_RX_FAST
authorJagan Teki <[email protected]>
Wed, 10 Aug 2016 15:18:14 +0000 (20:48 +0530)
committerJagan Teki <[email protected]>
Wed, 21 Sep 2016 19:32:28 +0000 (01:02 +0530)
Removed SPI_RX_FAST since default read for spi slaves
are always 1-wire fast read.

Cc: Simon Glass <[email protected]>
Cc: Bin Meng <[email protected]>
Cc: Michal Simek <[email protected]>
Cc: Siva Durga Prasad Paladugu <[email protected]>
Cc: Vignesh R <[email protected]>
Cc: Mugunthan V N <[email protected]>
Signed-off-by: Jagan Teki <[email protected]>
include/spi.h

index b262e061a8b89866cab536d3e1ace0fadb60a86c..4c179838eefcaa8f5ee44f542e52a1e219ae504d 100644 (file)
@@ -27,9 +27,8 @@
 #define SPI_TX_DUAL    BIT(9)                  /* transmit with 2 wires */
 #define SPI_TX_QUAD    BIT(10)                 /* transmit with 4 wires */
 #define SPI_RX_SLOW    BIT(11)                 /* receive with 1 wire slow */
-#define SPI_RX_FAST    BIT(12)                 /* receive with 1 wire fast */
-#define SPI_RX_DUAL    BIT(13)                 /* receive with 2 wires */
-#define SPI_RX_QUAD    BIT(14)                 /* receive with 4 wires */
+#define SPI_RX_DUAL    BIT(12)                 /* receive with 2 wires */
+#define SPI_RX_QUAD    BIT(13)                 /* receive with 4 wires */
 
 /* SPI bus connection options - see enum spi_dual_flash */
 #define SPI_CONN_DUAL_SHARED           (1 << 0)